home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / time / bigtime / bin / user / usertemplate.h < prev   
C/C++ Source or Header  |  1995-10-19  |  977b  |  35 lines

  1. /* --------------------------------------------------------------------------- */
  2. /*    Name: UserTemplate.h
  3.  *  Author: aleph NULL (Silicon Based Life)
  4.  *    Date: 8/10/95
  5.  * Comment: (c) Copyright 1995 Silicon Based Life
  6.  *        :
  7.  */
  8. /* --------------------------------------------------------------------------- */
  9.  
  10. #ifndef USERTEMPLATE_H
  11. #define USERTEMPLATE_H
  12.  
  13. /* --------------------------------------------------------------------------- */
  14. /* #includes */
  15.  
  16. #include <exec/ports.h>
  17.  
  18. /* --------------------------------------------------------------------------- */
  19. /* #defines */
  20.  
  21. #define DEFAULT_USER_PORT "BT_User_Port"
  22.  
  23. enum Event { OPENFACE, CLOSEFACE, CHIME, ALARM, TIME, PREFS, QUIT };
  24.  
  25. /* --------------------------------------------------------------------------- */
  26. /* Structures */
  27.  
  28. struct UserMessage {
  29.     struct Message um_Message;
  30.     UBYTE          um_Event;
  31. };
  32.  
  33. /* --------------------------------------------------------------------------- */
  34. #endif
  35.